   
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f4f4f4;
            color: #333;
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: #00d2be;
        }
        
        /* Header Styles */
        header {
            background: linear-gradient(to right, #00d2be 0%, #008571 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .logo {
            font-size: 2rem;
            font-weight: bold;
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 50px;
            margin-right: 10px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 20px;
        }
        
        nav ul li a {
            color: white;
            font-weight: 500;
            padding: 5px 10px;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        
        nav ul li a:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        /* Main Content */
        .container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 20px;
        }
        
        /* Team Hero Section */
        .team-hero {
            background: 
            background-size: cover;
            background-position: center;
            height: 500px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            margin-bottom: 30px;
            position: relative;
        }
        
        .team-hero-content {
            max-width: 800px;
            padding: 20px;
            background-color: rgba(0, 0, 0, 0.6);
            border-radius: 10px;
        }
        
        .team-hero h1 {
            font-size: 3rem;
            margin-bottom: 15px;
            color: #00d2be;
        }
        
        .team-hero p {
            font-size: 1.2rem;
            margin-bottom: 20px;
        }
        
        .team-details {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
        }
        
        .team-detail-item {
            text-align: center;
        }
        
        .team-detail-value {
            font-size: 2rem;
            font-weight: bold;
            color: #00d2be;
        }
        
        .team-detail-label {
            font-size: 0.9rem;
            text-transform: uppercase;
        }
        
        /* Section Styles */
        .section-title {
            font-size: 1.8rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #00d2be;
            color: #333;
        }
        
        /* Team Info Section */
        .team-info {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .team-info-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .team-info-header {
            background: #00d2be;
            color: white;
            padding: 15px;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .team-info-content {
            padding: 20px;
        }
        
        /* Drivers Section */
        .drivers {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .driver-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .driver-card:hover {
            transform: translateY(-5px);
        }
        
        .driver-image {
            height: 300px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .driver-number {
            position: absolute;
            top: 20px;
            left: 20px;
            background: #00d2be;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        .driver-content {
            padding: 20px;
        }
        
        .driver-name {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #00665e;
        }
        
        .driver-flag {
            height: 20px;
            margin-right: 10px;
            vertical-align: middle;
        }
        
        .driver-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-top: 15px;
        }
        
        .driver-stat {
            text-align: center;
            padding: 10px;
            background: #f4f4f4;
            border-radius: 5px;
        }
        
        .driver-stat-value {
            font-size: 1.5rem;
            font-weight: bold;
            color: #00d2be;
        }
        
        .driver-stat-label {
            font-size: 0.8rem;
            text-transform: uppercase;
        }
        
        /* Car Section */
        .car-section {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 40px;
        }
        
        .car-header {
            background: #00d2be;
            color: white;
            padding: 15px;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .car-content {
            padding: 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        
        .car-image {
            background: url('https://f1report.ru/img/teams/car_foto/12_2025.jpg');
            background-size: cover;
            image-resolution: 100%;
            background-position: center;
            border-radius: 5px;
            height: 160px;
            width: auto;
            justify-content: center;
            margin-top: 50px;
            padding: 50px 30px
        }
        
        .car-specs {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        
        .car-spec {
            padding: 15px;
            background: #f4f4f4;
            border-radius: 5px;
        }
        
        .car-spec-value {
            font-size: 1.2rem;
            font-weight: bold;
            color: #00d2be;
        }
        
        .car-spec-label {
            font-size: 0.9rem;
            text-transform: uppercase;
        }
        
        /* Achievements Section */
        .achievements {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .achievement-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
            padding: 20px;
            transition: transform 0.3s;
        }
        
        .achievement-card:hover {
            transform: translateY(-5px);
        }
        
        .achievement-icon {
            font-size: 3rem;
            color: #00d2be;
            margin-bottom: 15px;
        }
        
        .achievement-value {
            font-size: 2.5rem;
            font-weight: bold;
            color: #00665e;
            margin-bottom: 10px;
        }
        
        .achievement-label {
            font-size: 1rem;
            color: #666;
        }
        
        /* Gallery Section */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin-bottom: 40px;
        }
        
        .gallery-item {
            height: 200px;
            background-size: cover;
            background-position: center;
            border-radius: 5px;
            transition: transform 0.3s;
            cursor: pointer;
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
        }
        
        /* Footer */
        footer {
            background: #333;
            color: white;
            padding: 40px 0 20px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        
        .footer-section h3 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #00d2be;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 10px;
        }
        
        .footer-section a {
            color: #ddd;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: #00d2be;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            color: white;
            font-size: 1.5rem;
        }
        
        .copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #555;
            color: #999;
            font-size: 0.9rem;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
            }
            
            nav ul {
                margin-top: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 5px;
            }
            
            .team-hero {
                height: 400px;
            }
            
            .team-hero h1 {
                font-size: 2rem;
            }
            
            .team-info {
                grid-template-columns: 1fr;
            }
            
            .car-content {
                grid-template-columns: 1fr;
            }
            
            .car-image {
                height: 200px;
            }
        }
    